home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / EVISION1.ARJ / ASSERT.HPP next >
C/C++ Source or Header  |  1992-05-19  |  717b  |  23 lines

  1. #if !defined (ASSERT)                     // To prevent multiple declarations
  2. #define ASSERT
  3.  
  4. // ---- Library Header Files ------------------------------------------------
  5.  
  6. #include <stdlib.h>
  7.  
  8.  
  9. // ---- Prototypes ----------------------------------------------------------
  10.  
  11. void far assert
  12.  
  13. ( int       condition,                        // If FALSE, prg will be halted
  14.   char huge *fctname=NULL,            // Name of currently executing function
  15.   int       errorcode=0,                    // EasyVision internal error code
  16.   char huge *errortext=NULL                        // User defined error text
  17. ) ;
  18.  
  19.  
  20. // ---- End Header File -----------------------------------------------------
  21.  
  22. #endif
  23.